home *** CD-ROM | disk | FTP | other *** search
/ Multimedia Jumpstart / Multimedia Microsoft Jumpstart Version 1.1a (Microsoft).BIN / develpmt / source / snapshot / snapshot.rc < prev    next >
Encoding:
Text File  |  1992-09-12  |  1.5 KB  |  51 lines

  1. /* SnapShot.rc
  2.  
  3.      (C) Copyright Microsoft Corp. 1991.  All rights reserved.
  4.  
  5.      You have a royalty-free right to use, modify, reproduce and 
  6.      distribute the Sample Files (and/or any modified version) in 
  7.      any way you find useful, provided that you agree that 
  8.      Microsoft has no warranty obligations or liability for any 
  9.      Sample Application Files which are modified. 
  10.      
  11.  */     
  12.  
  13. #include <windows.h>
  14. #include "SnapShot.h"
  15.  
  16. AppIcon ICON SnapShot.ico
  17.  
  18.  
  19. APPMENU MENU
  20. BEGIN
  21.     MENUITEM "Now!"            IDM_NOW
  22.     MENUITEM "5sec!"        IDM_5SEC
  23. END
  24.  
  25.  
  26. ABOUTBOX DIALOG 22, 17, 144, 100
  27. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  28. CAPTION "About"
  29. FONT 8, "Helv"
  30. BEGIN
  31.     CONTROL "Compile info" IDD_TEXT, "static", SS_CENTER | WS_GROUP | WS_CHILD, 0, 87, 144, 8
  32.     CTEXT           "Microsoft Windows",           -1,  0,  5, 144, 8
  33.     CTEXT           "SnapShot Screen Capture Utility",  -1,  0, 14, 144, 8
  34.     CTEXT           "Multimedia Systems Group",    -1,  0, 23, 144, 8
  35.     CTEXT           "Version 2.0",            -1, 38, 34, 64, 8
  36.     CTEXT           "Copyright (c) 1986-92, Microsoft Corp.", -1, 5, 47, 132, 9
  37.     CTEXT           "All Rights Reserved.",        -1,  5, 58, 132, 9
  38.     ICON            "AppIcon", -1, 3, 5, 0, 0
  39.     DEFPUSHBUTTON   "Ok", IDOK, 53, 70, 32, 14, WS_GROUP
  40. END
  41.  
  42.  
  43.  
  44. STRINGTABLE
  45. BEGIN
  46.     IDS_APPNAME        "SnapShot"
  47.     IDS_OUTOFMEMORY        "Out of memory"
  48.     IDS_INTERNALERROR    "Internal error %d"
  49.     IDS_APPNAMEVER        "SnapShot""foo"
  50. END
  51.